string interning in python

70

>>> import sys>>> c = sys.intern('Y'*4097)>>> d = sys.intern('Y'*4097)>>> c is dTrue

Comments

Submit
0 Comments